/* Import fonts */
@font-face {
    font-family: 'CustomFont';
    src: url("./fonts/HankenGrotesk-VariableFont_wght.ttf") format("truetype")
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: "CustomFont";
    color: #fff;
    background-color: #780252;
    margin-left: 4%;
    margin-right: 4%;
}

.logo {
    color: white;
    user-select: none;
}

.logo img {
    height: 80px;
}

#acceuil {
    position: relative;
    background: linear-gradient(to bottom, rgba(45, 7, 98, 0.9), rgba(181, 23, 158, 0.6)), url('header-bg.jpg') center/cover;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

nav {
    background: linear-gradient(90deg, rgba(121, 2, 82, 1) 0%, rgba(175, 132, 224, 0.32) 50%, rgba(245, 93, 78, 0.32) 100%);
    color: white;
    position: absolute;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /*background: rgba(45, 7, 98, 0.8);*/
}

nav>a {
    text-decoration: none;
    user-select: none;
    outline: none;
}

.nav-links a {
    color: #ffcce7;
    text-decoration: none;
    margin: 0 1rem;
    font-weight: 400;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: white;
    text-decoration: none;
}

.topVideoContainer {
    margin: 0;
    padding: 0;
    width: 100%;
}

.container {
    width: 100%;
    margin: 0px;
    padding: 50px 0px;
}

.gradientDiv {
    position: absolute;
    top: 0;
    left: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 50%;
    height: 100%;
    /*background: rgb(121, 2, 82);*/
    background: linear-gradient(90deg, rgba(121, 2, 82, 1) 0%, rgba(175, 132, 224, 0.32) 50%, rgba(245, 93, 78, 0.32) 100%);
    font-family: "CustomFont";
}

.gradientDiv h2 {
    font-size: 4.2vw !important;
    padding-left: 3%;
    padding-right: 3%;
    margin-bottom: 7%;
}

.linkCtn {
    display: flex;
    width: 30%;
    height: 7%;
    min-width: 140px;
    min-height: 40px;
    color: white;
    text-decoration: none;
}

.linkBtn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    min-height: 40px;
    border: 1px solid #eee;
    border-radius: 3px;
}

.linkBtn p {
    font-size: 1.2rem !important;
    text-align: center !important;
    margin-top: 0px !important;
    margin-bottom: 0px !important;
}

.video {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.videoPhone {
    display: none;
}

@media screen and (max-width: 768px) {
    #videoHome {
        display: none;
    }

    /*.video {
        display: none;
    }*/

    .videoPhone {
        display: block;
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        height: auto;
        /*object-fit: cover;*/
        z-index: 1;
    }
}

/* Overlay Texte */
.overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 5;
}

/*.linkBtnJoinUs {
    display: grid;
    justify-content: space-around;
    justify-items: center;
    align-content: space-evenly;
    align-items: stretch;
    gap: 1rem;

    position: absolute;
    width: 20%;
    left: 40%;
    top: 65%;
    height: 20%;

    margin-top: 2rem;
    color: #fff;
    background: rgb(121, 2, 82);
    background: linear-gradient(90deg, rgba(121, 2, 82, 1) 0%, rgba(175, 132, 224, 0.32) 64%);
    border-radius: 50px;
}

.linkBtnJoinUs a {
    margin-top: 5px;
    color: #fff;
    font-family: "CustomFont";
    text-decoration: none;
    font-weight: bold;
    font-size: 2vw;
}

.linkBtnJoinUs img {
    height: 60% !important;
    width: 50%;
    padding-bottom: 20px;
    object-fit: fill;
}*/

.advancedIT-section {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.videoAdvancedIT {
    margin: 0;
    padding: 0;
    position: relative;
    object-fit: cover;
    top: 0;
    left: 0;
    width: 100%;
    z-index: -1;
    /*filter: blur(2px);*/
}

.textAdvancedIT {
    position: absolute;
    top: 0;
    left: 20%;
    width: 30%;
    height: 100%;
    background-color: rgba(123, 1, 83, 0.6);
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    margin: 0;
    padding-top: 2%;
    padding-bottom: 2%;
}

.textAdvancedIT p {
    color: white;
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    text-align: center;
    margin-top: 0px;
    margin-bottom: 0px;
    padding-left: 16px;
    padding-right: 16px;
}

.textAdvancedIT-line {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: calc(25% - 2% / 4 - 1px);
}

.textAdvancedIT-separator {
    width: 60%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.92);
}

.navLinksPhone {
    display: none;
}

@media (max-width: 768px) {
    .navLinksPhone {
        display: block;
    }

    .advancedIT-section {
        width: 100%;
        /*height: 100vh;*/
        margin: auto;
    }

    .textAdvancedIT {
        width: 80%;
        left: 10%;
        padding: 5%;
        height: 100%;
    }

    /*.textAdvancedIT p {
        margin-bottom: 3%;
    }*/

    .videoAdvancedIT {
        height: 100vh;
    }
}

.divOurSolutions {
    width: 100%;
    height: 80%;
    text-align: center;
    background-color: rgba(182, 151, 157, 0.62);
    color: white;
    font-size: 1.5vw;
    display: flex;
    justify-content: space-around;
    flex-direction: column;
    margin: 0;
    padding: 0;
    padding-left: 3%;
    padding-right: 3%;
}

.divOurPartnersBg {
    width: 100%;
    height: 80px;
    background-color: #790e52;
}

/*#divOurPartnersTop {
    top: 0;
}

#divOurPartnersBottom {
    bottom: 0;
}*/

.divOurPartners {
    width: 100%;
    height: 80%;
    /*background-color: rgba(182, 151, 157, 0.62);*/
    color: white;
    font-size: 1.5vw;
    display: flex;
    justify-content: space-around;
    flex-direction: column;
    margin: 0;
    padding: 0;
    padding-left: 3%;
    padding-right: 3%;
}

.partnersBackground {
    position: absolute;
    width: 100%;
    height: 100%;
    object-position: 0% 30%;
    object-fit: cover;
    filter: blur(10px);
    z-index: -1;
}

.containerOurSolutions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 30px 10px;
}

.textOurSolutions {
    display: flex;
    align-items: center;
    margin-top: 10px;
    margin-bottom: 10px;
}

.textOurSolutions>div {
    padding: 0px 40px 0px 30px;
}

.textOurSolutions img {
    height: 8vh;
    min-height: 80px;
    aspect-ratio: 1 / 1;
}

.textOurSolutions h2 {
    font-size: clamp(1rem, 1.8vw, 2rem);
}

.textOurSolutions p {
    font-size: clamp(0.8rem, 1.3vw, 1.8rem);
    margin-bottom: 0px;
}

@media (max-width: 768px) {
    .partnersBackground {
        width: 100%;
        /*height: 55vh;*/
        object-position: 30% 30%;
    }

    .containerOurSolutions {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        width: 100%;
        margin: auto;

    }

    .textOurSolutions>div {
        padding: 0px 0px 0px 20px;
    }

    .textOurSolutions h2 {
        font-size: 3.5vw;
        text-align: left;
    }

    .textOurSolutions p {
        font-size: 2.5vw;
        text-align: left;
    }
}

.navbar {
    background-color: #333;

}

.navbar a {
    float: left;
    font-size: 16px;
    color: white;
    text-align: center;
    text-decoration: none;
}

.dropdown {
    float: left;
}

.dropbtn {
    border: none;
    outline: none;
    color: white;
    padding: 14px 16px;
    /*background-color: inherit;*/
    background-color: unset;
    margin: 0;
}


.dropdown-content {
    background-color: #780252 !important;
    display: none;
    position: absolute;
    flex-direction: column;
    align-items: center;
    background-color: #f9f9f9;
    min-width: 100%;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 10;
    margin: 0;
    overflow-y: auto;
    max-height: 50vh;
    /* Set a maximum height */
    left: 50%;
    transform: translateX(-50%);
}

/* width */
::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #780252;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #620243;
}

.dropdown-content a {
    float: none;
    color: white;
    text-decoration: none;
    display: block;
}

.dropdown-content .pageTitle {
    width: 100%;
    color: #DBEFF4;
    font-size: 0.95rem;
    padding: 12px 16px;
    text-align: center;
}

.pageSubTitle {
    font-size: 0.7rem;
    padding: 10px 24px;
    text-align: left;
}

.dropdownLink {
    margin: 0 !important;
}


.dropdown-content a:hover {
    background-color: #620243;
}

.dropdown:hover .dropdown-content {
    display: flex;
}

.navLinks:hover {
    background-color: #620243;
}

.navDivider {
    width: 40%;
    height: 1px;
    background-color: white;
    flex-shrink: 0;
    margin: .2rem 0;
    overflow: hidden;
    /*border-top: 1px solid rgba(217, 217, 217, .15);*/
}



.vision-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0rem;
    background-color: #780252;
    text-align: center;
    height: 60%;
    width: 100%;
}

.vision-section img {
    width: 50%;
    height: auto;
}

.vision-section h2 {
    color: #fff;
    padding: 0 7%;
    font-size: 2.5rem;
}

@media (max-width: 768px) {
    .vision-section {
        width: 100%;
        margin: auto;
    }

    body {
        margin-left: 0;
        margin-right: 0;
        width: 100%;
    }
}

section {
    margin-bottom: 25px !important;
}

input[type='text'] {
    font-size: 24px;
    font-family: "CustomFont";
}

.landscape-line {
    position: relative;
    width: 90%;
    margin-top: 10px;
    margin-bottom: 10px;
}

.landscape-item {
    font-family: "CustomFont";
    font-size: 1.2rem;
    font-weight: bold;
    text-align: center;
    color: #fff;
    padding: 34px 50px 28px 10px;
    z-index: 0;
}

.fastChanging-BackgroundImg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding-top: 0.3rem;
    z-index: 0;
}

.containerButton {
    align-content: center;
    display: flex;
    justify-content: center;
}





.fastChanging-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0rem;
    background-color: #780252;
    text-align: center;
    height: 60%;
    width: 100%;
}

.fastChanging-img {
    width: 50%;
    height: auto;
}

.fastChanging-section h2 {
    color: #fff;
    font-size: 2.5rem;
}

.image-container {
    position: relative;
    /*display: inline-block;
    margin-bottom: 10px;*/
}

.image-container img {
    display: block;
    width: 100%;
    height: auto;
}

#landscape-header {
    width: 80%;
    margin-bottom: 30px;
}

.overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    /*padding: 10px 20px;*/
    font-family: "CustomFont";
    font-size: 2vw;
    text-align: center;
    width: 90%;
    /*background-color: #c144a0;*/
}

.overlay-textTitle {
    position: absolute;
    top: 28%;
    left: 4.5%;
    width: 85%;
    color: #fff;
    font-family: "CustomFont";
    font-size: 2.1vw;
    text-align: center;
    rotate: -6deg;
    user-select: none;
}

@media (max-width: 768px) {
    .fastChanging-section {
        width: 100%;
        margin: auto;
        flex-direction: column;
    }

    .overlay-textTitle {
        font-size: 3.5vw;
        margin-top: 7px;
    }

    .overlay-text {
        font-size: 3vw;
        width: 80%;
    }

    .fastChanging-img {
        width: 100%;
        height: 35vh;
        object-fit: cover;
        object-position: 0% 30%;
    }

    .landscape-item {
        font-size: 1.1rem;
    }

    /*.fastChanging-BackgroundImg {
        width: 80% !important;
        height: auto;
        margin: auto;
    }*/
}

.caseStudy-section {
    position: relative;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 0rem;
    background-color: #780252;
    text-align: center;
    height: 60%;
    width: 100%;
}

.caseStudy-text {
    width: 50%;
    height: auto;
    padding: 10px;
}

.caseStudy-section img {
    width: 50%;
    height: auto;
}

.case-study {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: rgba(182, 151, 157, 0.38);
    color: #fff;
    padding: 5%;
    text-align: left;
    height: 93%;
    width: 80%;
    margin: auto;
}

/*.case-study h2 {
    background-color: #870057;
    padding: 10px;
    font-size: 1.2em;
    text-align: center;
    width: 100%;
}*/

.case-study h3 {
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 1.8vw;
    text-align: left;
    margin-top: 10px;
}

.case-study ul {
    text-align: left;
    list-style: none;
    padding: 0;
    padding-left: 10%;
    margin: 0;
}

.case-study p {
    padding: 0;
    padding-left: 10%;
    font-size: 1.2vw;
    margin-bottom: 5%;
}

.case-study ul li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    font-size: 1.2vw;
}

.case-study ul li::before {
    content: "✔";
    color: green;
    font-weight: bold;
    margin-right: 8px;
}

.case-study ul li.incomplete::before {
    content: "✘";
    color: red;
}

.titleCaseStudy {
    text-align: center;
    justify-content: center;
    height: 7%;
    width: 100%;
    background-color: #A35088;
    font-size: 3vw !important;
    margin: 0;
}

@media (max-width: 768px) {
    .caseStudy-section {
        flex-direction: column-reverse;
        align-items: center;
        justify-content: center;
        width: 100%;
        margin: auto;
    }

    .caseStudy-section img {
        width: 100%;
        height: 35vh;
        object-fit: cover;
        object-position: center;
        margin-bottom: 25px;
    }

    .caseStudy-text {
        width: 100%;
        text-align: center;
        padding: 0;
    }

    .titleCaseStudy {
        font-size: 4.5vw !important;
    }

    .case-study {
        width: 100%;
        height: auto;
        padding: 5%;
        margin: auto;
    }

    .case-study h3 {
        font-size: 3.5vw;
    }

    .case-study p {
        font-size: 3vw;
    }

    .case-study ul li {
        font-size: 3vw;
    }

    .case-study {
        background-color: transparent !important;
    }
}

footer {
    text-align: center;
    background-color: #780252;
}

.footertext {
    color: #f4f3ed;
    text-align: left;
    font-size: 1vw;
}

.footerrow {
    margin: auto
}

.footertitles {
    color: #a499ba;
    font-size: 1.2vw;
    margin-bottom: 3px;
    text-align: left;
    user-select: none;
}

.footertitlesanimate {
    color: #a499ba;
    margin-left: 0;
    text-decoration: none
}

a.footertitlesanimate:hover {
    color: #eaf6f6
}

a.footertextanimate {
    color: #f4f3ed;
    font-size: 0.92vw;
    /*font-size: 8.5pt;*/
    text-align: left;
    text-decoration: none;
}

.footer-link {
    margin: 0, 1px
}

.footer-column {
    padding-top: 18px;

}

.row {
    padding-left: 5px;
}

.footerhr {
    margin-top: 10px;
}

.copyright {
    color: #a499ba;
    font-size: 6.2pt;
    margin-top: 15px;
}

@media (max-width: 768px) {
    .footertext {
        text-align: center;
        line-height: 1.6;
    }

    .footertitles {
        font-size: 0.9rem;
        text-align: center;
    }
}

/* Bouton Hamburger */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8em;
    color: white;
    cursor: pointer;
}

.close-menu {
    display: none;
}

/* 🌟 Responsive Menu (Mobile) */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
        padding-right: 5%;
        /* Affiche le bouton hamburger */
    }

    .nav-links {
        display: none;
        /* Cache le menu par défaut */
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(121, 2, 82, 0.9);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 6px;
        font-size: 1.5em;
        z-index: 20;
    }

    .nav-links.show {
        display: flex;
        /* Affiche le menu quand la classe "show" est ajoutée */
    }

    nav button {
        font-weight: 400;
        font-size: 1.5rem;
    }

    /* 🌟 Bouton de fermeture (CACHÉ par défaut) */
    .close-menu {
        display: none;
        /* Caché sur ordinateur ET mobile par défaut */
        position: absolute;
        top: 15px;
        right: 5%;
        background: none;
        border: none;
        font-size: 2em;
        color: white;
        transform: scale(0.65) translate(11px, -17px);
        cursor: pointer;
    }

    /* Afficher ✖ UNIQUEMENT quand le menu est ouvert sur mobile */
    .nav-links.show .close-menu {
        display: block;
    }

    .dropdown-content {
        background-color: #9B417D !important;
    }
}

.sectionAboutUsHeader {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    padding: 25px 30px 25px 20px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.sectionAboutUsHeader h1 {
    margin-bottom: 0px;
}

.sectionAboutUsHeader a {
    width: 3%;
    min-width: 40px;
    aspect-ratio: 1 / 1;
    outline: none;
    user-select: none;
}

.sectionAboutUsHeader img {
    width: 100%;
    height: 100%;
}

.sectionAboutUs {
    width: 100%;
    display: flex;
    flex-direction: row;
    margin-bottom: 50px;
    aspect-ratio: 16 / 5.8;
    /*height: 50vh;*/
}

#imgChateau {
    width: 50%;
    height: 100%;
}

#imgChateau img {
    width: 100%;
    height: 100%;
    filter: blur(1px);
    object-fit: cover;
    object-position: 50% 70%;
}

#textAboutUs {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: left;
    width: 50%;
    height: auto;
    padding: 30px;
}

#textAboutUs h2 {
    font-size: clamp(1.1rem, 1.8vw, 2rem);
}

#textAboutUs p {
    font-size: clamp(0.95rem, 1.25vw, 2rem);
}

.aboutUsInfo {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    text-align: left;
}

#OurMission {
    background-color: #780252;
    color: white;
    padding: 30px;
}

#OurEcosystem {
    background-color: #F4DDB6;
    color: #373737;
    padding: 30px;
}

#OurCulture {
    background-color: #498995;
    color: white;
    padding: 30px;
}

@media (max-width: 768px) {
    .aboutUsInfo {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .sectionAboutUs {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    #imgChateau {
        width: 100%;
        /*height: auto;*/
    }

    #textAboutUs {
        width: 100%;
        height: auto;
        padding: 5% 3% 3% 3%;
    }


    /*#OurVision {
        padding: 3%;
    }

    #OurEcosystem {
        padding: 3%;
    }

    #OurCulture {
        padding: 3%;
    }*/
}

.moreThan {
    width: 60%;
    height: 100%;
    background-color: rgba(182, 151, 157, 0.38);
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    color: #fff;
    padding: 5%;
    text-align: left;

}

.moreThan h3 {
    margin-bottom: 10px;
    font-size: 1.8vw;
    text-align: left;
}

.last-section {
    /*display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0rem;
    justify-content: space-between;
    background-color: #780252;
    text-align: center;
    width: 100%;*/

    position: relative;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 0rem;
    background-color: #780252;
    text-align: center;
    height: 60%;
    width: 100%;
}

.last-section img {
    width: 50%;
    height: auto;
}

.last-section-text {
    width: 50%;
}

.last-section button {
    width: 80%;
    height: auto;
    background-color: #9B9B9B;
    padding: 4%;
    margin-top: 5%;
    border: none;
    color: white;
    font-size: 1em;
}

.last-section a {
    text-align: center;
}

@media (max-width: 768px) {
    .last-section {
        width: 100%;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin: auto;
        overflow: hidden;
    }

    .last-section img {
        width: 100%;
        height: 35vh;
        object-fit: cover;
        object-position: 0% 30%;
        margin-bottom: 25px;
    }

    .last-section-text {
        width: 100%;
        text-align: center;
    }

    .moreThan {
        width: 100%;
        height: 300px;
        padding: 5% 5% 6% 5%;
        margin: auto;
        align-items: center;
    }

    .moreThan h3 {
        text-align: center !important;
        font-size: 4vw;
        padding: 3% 10%;
    }

    .contactForm-section {
        position: relative !important;
        text-align: center;
        height: 60%;
        width: 100%;
    }

    #contact-details-box {
        height: 100% !important;
        align-items: center;
    }

    @media (max-width: 768px) {
        .contact-info {
            padding: 3%;
        }

        #contact-info-list {
            flex-direction: column;
            padding: 3%;
        }

        #contact-details-box {
            align-items: center;
            flex-direction: column;
        }
    }
}